home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEDocGetObj.au3 < prev    next >
Text File  |  2007-09-08  |  408b  |  9 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser to the AutoIt Homepage, get a reference
  3. ;                to the document object and display a document attribute
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IECreate ("http://www.autoitscript.com")
  8. $oDoc = _IEDocGetObj ($oIE)
  9. MsgBox(0, "Document Created Date", $oDoc.fileCreatedDate)